home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / fill.arc / FILL.DOC next >
Text File  |  1987-02-23  |  4KB  |  101 lines

  1.  
  2. FILL.DOC: documentation for Fill v1.0
  3.           (c) Jean Lalonde, Montreal, Canada
  4.           February 23, 1987
  5.  
  6. Hi!
  7.  
  8.      Did you ever encountered this situation: you want carry the
  9.      files of a directory from one hard-disk to another.  You have to
  10.      copy the files of this directory to floppy disk.  The directory
  11.      contains several files, some big, other smaller, and...
  12.  
  13.           C>copy *.* a:
  14.           FIRSTBIG.EXE
  15.           OTHERBIG.EXE
  16.           Insufficient disk space
  17.                   1 File(s) copied
  18.  
  19.      You realize that you will have to copy your directory on more
  20.      than one floppy.  Then, you have two choices.  First, copy each
  21.      file seperately checking the space remaining on 'A:' and the
  22.      files size.  Second choice, you can use a back-up program.  The
  23.      backup program is a good solution but you will have to carry
  24.      the restore program with you.  With Fill, there is a third
  25.      solution...
  26.  
  27.           C>fill *.* a:
  28.  
  29.      Fill will copy all your files, filling up each floppy disk.  To
  30.      do this, Fill will build a list of the files of the directory,
  31.      sort this list by size order and then copy the biggest file to
  32.      the floppy.  Second, it will copy the biggest file that can be
  33.      copied in the remaining space of the floppy and so on. When the
  34.      first floppy will be filled up, Fill will prompt you for another
  35.      disk until the directory is completely copied to floppies.
  36.  
  37.      This way, Fill optimize your floppy disk space and make the job
  38.      easy.  To restore the files on the destination hard-disk, all
  39.      you will have to do is copying the files of each floppy with the
  40.      simple command...
  41.  
  42.           A>copy *.* c:\directory
  43.  
  44.      Fill calculate the number of floppies needed before beginning
  45.      the job.  You will never have to stop because you do not have
  46.      enough floppies.  Fill will also allow you to list files (dir),
  47.      delete or format the destination floppy without leaving the
  48.      program.
  49.  
  50.      The only restriction is that the biggest file of your directory
  51.      must fit on one floppy (362,496 bytes or 1.2 meg according to
  52.      your configuration).  If the biggest file do not fit on a floppy
  53.      you will have to use the backup/restore solution.
  54.  
  55.      To allow formatting within Fill, the program FORMAT.COM (or
  56.      FORMAT.EXE) must be in your PATH directory.  If FORMAT is in the
  57.      directory '\DOS', your AUTOEXEC.BAT file must specify:
  58.  
  59.           PATH=C:\DOS;...other directories...;
  60.  
  61.      The Fill's syntax is very similar to the copy's syntax:
  62.  
  63.           Fill \directory\files target [/s]
  64.  
  65.           '\directory' is the directory to copy
  66.           'files' to copy (wild cards allowed, default is '*.*')
  67.           'target' is the destination drive (must be 'A:' or 'B:')
  68.           '/S' to include sub-directories
  69.  
  70.      The option '/S' allow you to repeat the process on every sub-
  71.      directories under the specified directory without repeating the
  72.      command line.
  73.  
  74.      I hope Fill will be usefull to you.  You can send me comments or
  75.      reports to:
  76.  
  77.           Jean Lalonde
  78.           P.O. BOX 721
  79.           Station "R"
  80.           Montreal
  81.           CANADA
  82.           H2S-3M4
  83.  
  84.      You can join me online on Compuserve (ID: 76606,671) or on BIX
  85.      Info Exchange (Bix name: jlalonde).  Sub is written in MODULA-
  86.      2/86, Rel. 2.0 (A), PC/MS-DOS 8088/8086, LOGITECH, (C) Copyright
  87.      1983, 1984, 1985, 1986.  Sub uses standard PC/MS-DOS functions,
  88.      version 3.0 or greater.  The larger your RAM is, the faster Fill
  89.      will copy your files.  Although it will run correctly with only
  90.      100k of RAM free.
  91.  
  92.      You can use or redistribute this program freely as long as this
  93.      documentation file and the copyright remain intact.  Modula-2
  94.      sources of this program are available.  To receive those text
  95.      files, please send me a $25 check.
  96.  
  97.      Enjoy Fill!
  98.  
  99.      Jean Lalonde
  100.      February 23, 1987
  101.